home *** CD-ROM | disk | FTP | other *** search
- // exempvw.h : interface of the CExempleView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CExempleView : public CFormView
- {
- protected: // create from serialization only
- CExempleView();
- DECLARE_DYNCREATE(CExempleView)
-
- public:
- //{{AFX_DATA(CExempleView)
- enum{ IDD = IDD_EXEMPLE_FORM };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
-
- // Attributes
- public:
- CExempleDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CExempleView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CExempleView)
- afx_msg void OnExempleDialogue1();
- afx_msg void OnExempleDialogue2();
- afx_msg void OnBpdial1();
- afx_msg void OnBpdial2();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in exempvw.cpp
- inline CExempleDoc* CExempleView::GetDocument()
- { return (CExempleDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-